home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / pc / files / t_unix / j109lxa4.tar / tipmail.h < prev    next >
C/C++ Source or Header  |  1994-06-04  |  728b  |  29 lines

  1. #ifndef _TIPMAIL_H
  2. #define _TIPMAIL_H
  3.  
  4. struct tipcb {
  5.         struct tipcb *next;
  6.         struct proc *proc;
  7.         struct proc *in;
  8.         struct iface *iface;
  9.         struct timer timer;
  10.         int (*rawsave) __ARGS((struct iface *,struct mbuf *));
  11.         int s;
  12.         int echo;
  13.         int asy_dev;
  14.         unsigned default_timeout;
  15.         unsigned timeout;
  16.         char firstwarn;
  17.         char chk_modem_cd;
  18.         char raw;
  19.         } *Tiplist;
  20. #define NULLTIP (struct tipcb *)0
  21.  
  22.  
  23. int tipstart __ARGS((int argc,char *argv[],void *p));
  24. int tip0 __ARGS((int argc,char *argv[],void *p));
  25. int telnet0 __ARGS((int argc,char *argv[],void *p));
  26. int telnet1 __ARGS((int argc,char *argv[],void *p));
  27.  
  28. #endif /* _TIPMAIL_H */
  29.